.hero-section {
    position: relative;
    text-align: center;
  }
  
  .hero-section > img {
    height: 350px;
    object-fit: cover;
}

  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    font-weight: bold;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
  }
  
  .about-us {
    display: grid;
    gap: 20px;
    margin: 25px 0;
  }
  
  .about-text, .about-details {
    text-align: center;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .about-us-main-section {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    gap: 10px;
    margin-top: -10px;
  }
  @media(max-width:768px)
  {
    .about-us-main-section {
      display: flex
  ;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px;
      gap: 10px;
      margin-top: -10px;
  }
  }

  @media(min-width:557px ){
    .about-us-main-section {
      display: flex ;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px;
      gap: 10px;
      margin-top: -10px;
  }
  }